
    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_8d5175be1ef3b6676b4d4bc7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.026367px;}
.ls1{letter-spacing:1.259994px;}
.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:-17.257325px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-2411.430965px;}
._a{margin-left:-2093.356982px;}
._6{margin-left:-1881.646039px;}
._3{margin-left:-1581.996132px;}
._9{margin-left:-1457.085971px;}
._5{margin-left:-1292.805206px;}
._8{margin-left:-1183.620876px;}
._4{margin-left:-993.715600px;}
._0{margin-left:-5.537110px;}
._2{margin-left:-4.306641px;}
._1{margin-left:-1.691897px;}
.fc3{color:rgb(32,32,32);}
.fc2{color:rgb(36,36,36);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(174,21,21);}
.fs0{font-size:63.000001px;}
.fs3{font-size:76.500002px;}
.fs2{font-size:94.500002px;}
.fs1{font-size:162.000004px;}
.y0{bottom:0.000000px;}
.y5e{bottom:4.500025px;}
.y8e{bottom:4.500219px;}
.yfa{bottom:4.500540px;}
.yde{bottom:4.500619px;}
.y1e{bottom:5.625055px;}
.y9c{bottom:5.625114px;}
.y4c{bottom:7.875058px;}
.y4{bottom:10.125016px;}
.yf6{bottom:11.250547px;}
.yf3{bottom:11.250551px;}
.yf0{bottom:11.250556px;}
.yed{bottom:11.250560px;}
.yea{bottom:11.250564px;}
.yd8{bottom:11.250629px;}
.yd3{bottom:11.250637px;}
.yc9{bottom:11.250645px;}
.yc6{bottom:11.250649px;}
.yc2{bottom:11.250655px;}
.ybf{bottom:11.250659px;}
.ybc{bottom:11.250664px;}
.y68{bottom:20.249999px;}
.y22{bottom:20.250002px;}
.y20{bottom:20.250006px;}
.y64{bottom:20.250010px;}
.y62{bottom:20.250013px;}
.y60{bottom:20.250017px;}
.yb7{bottom:20.250024px;}
.yb5{bottom:20.250027px;}
.y5c{bottom:20.250029px;}
.yb3{bottom:20.250031px;}
.y5a{bottom:20.250033px;}
.yb1{bottom:20.250034px;}
.y58{bottom:20.250036px;}
.yaf{bottom:20.250038px;}
.y56{bottom:20.250040px;}
.y54{bottom:20.250043px;}
.y52{bottom:20.250047px;}
.y50{bottom:20.250051px;}
.yab{bottom:20.250054px;}
.ya9{bottom:20.250058px;}
.y4a{bottom:20.250061px;}
.y48{bottom:20.250065px;}
.y46{bottom:20.250069px;}
.y44{bottom:20.250072px;}
.y42{bottom:20.250076px;}
.y40{bottom:20.250079px;}
.y3e{bottom:20.250083px;}
.y3c{bottom:20.250087px;}
.y3a{bottom:20.250090px;}
.y37{bottom:20.250094px;}
.y35{bottom:20.250097px;}
.y33{bottom:20.250101px;}
.y31{bottom:20.250105px;}
.y2f{bottom:20.250108px;}
.y2d{bottom:20.250112px;}
.y2b{bottom:20.250115px;}
.y29{bottom:20.250119px;}
.y27{bottom:20.250123px;}
.y97{bottom:20.250169px;}
.y96{bottom:20.250173px;}
.y95{bottom:20.250176px;}
.y94{bottom:20.250180px;}
.y93{bottom:20.250183px;}
.y92{bottom:20.250187px;}
.y91{bottom:20.250191px;}
.y8c{bottom:20.250223px;}
.y8a{bottom:20.250226px;}
.y88{bottom:20.250237px;}
.y86{bottom:20.250241px;}
.y84{bottom:20.250244px;}
.y82{bottom:20.250248px;}
.y80{bottom:20.250252px;}
.y7e{bottom:20.250255px;}
.y7c{bottom:20.250259px;}
.y7a{bottom:20.250262px;}
.y78{bottom:20.250266px;}
.y75{bottom:20.250305px;}
.y73{bottom:20.250309px;}
.y71{bottom:20.250313px;}
.y6f{bottom:20.250316px;}
.y6d{bottom:20.250320px;}
.y6b{bottom:20.250323px;}
.y111{bottom:20.250424px;}
.y10f{bottom:20.250427px;}
.y10d{bottom:20.250431px;}
.y10b{bottom:20.250435px;}
.y109{bottom:20.250438px;}
.yf8{bottom:20.250544px;}
.ydc{bottom:20.250622px;}
.yda{bottom:20.250626px;}
.yd5{bottom:20.250634px;}
.ycd{bottom:20.250638px;}
.ycb{bottom:20.250642px;}
.ycf{bottom:20.250645px;}
.yf5{bottom:33.750548px;}
.yf2{bottom:33.750552px;}
.yef{bottom:33.750556px;}
.yec{bottom:33.750560px;}
.ye9{bottom:33.750565px;}
.yd7{bottom:33.750630px;}
.yd2{bottom:33.750638px;}
.yc8{bottom:33.750645px;}
.yc5{bottom:33.750650px;}
.yc1{bottom:33.750656px;}
.ybe{bottom:33.750660px;}
.ybb{bottom:33.750664px;}
.y9b{bottom:37.125114px;}
.y4b{bottom:41.879901px;}
.y4d{bottom:41.879904px;}
.ye1{bottom:41.879912px;}
.y23{bottom:41.879920px;}
.y1{bottom:41.879947px;}
.y8f{bottom:41.880271px;}
.yc4{bottom:56.250650px;}
.y9a{bottom:68.625115px;}
.y49{bottom:85.754899px;}
.yf9{bottom:126.254537px;}
.y47{bottom:142.004897px;}
.ydd{bottom:173.504535px;}
.yf7{bottom:176.879535px;}
.y45{bottom:198.254894px;}
.ydb{bottom:224.129533px;}
.yf4{bottom:233.129533px;}
.y1d{bottom:234.254893px;}
.yaa{bottom:246.630252px;}
.y43{bottom:254.504892px;}
.yd9{bottom:280.379531px;}
.y2{bottom:281.250003px;}
.y67{bottom:289.379891px;}
.yf1{bottom:300.629530px;}
.ya8{bottom:302.880250px;}
.y41{bottom:310.754890px;}
.yd6{bottom:336.629529px;}
.y66{bottom:345.629888px;}
.ya7{bottom:359.130248px;}
.y3f{bottom:367.004887px;}
.yee{bottom:368.129527px;}
.y1c{bottom:369.000005px;}
.y107{bottom:379.125021px;}
.y1b{bottom:391.500005px;}
.y65{bottom:401.879886px;}
.yd4{bottom:404.129526px;}
.y106{bottom:412.875022px;}
.y1a{bottom:414.000006px;}
.ya6{bottom:415.380245px;}
.y3d{bottom:423.254885px;}
.y105{bottom:435.375022px;}
.yeb{bottom:435.629524px;}
.y19{bottom:436.500006px;}
.y63{bottom:458.129884px;}
.y18{bottom:459.000007px;}
.yd1{bottom:460.379523px;}
.y8d{bottom:468.255243px;}
.ya5{bottom:471.630243px;}
.y3b{bottom:479.504883px;}
.y17{bottom:481.500007px;}
.yad{bottom:501.750042px;}
.ye8{bottom:503.129522px;}
.y16{bottom:504.000008px;}
.y61{bottom:514.379881px;}
.y8b{bottom:518.880241px;}
.y15{bottom:526.500008px;}
.yac{bottom:526.500043px;}
.yd0{bottom:527.879521px;}
.y39{bottom:535.754880px;}
.y104{bottom:544.500100px;}
.yfc{bottom:544.500176px;}
.y14{bottom:549.000009px;}
.y103{bottom:569.250101px;}
.yfb{bottom:569.250176px;}
.y5f{bottom:570.629879px;}
.y13{bottom:571.500009px;}
.y89{bottom:575.130239px;}
.yce{bottom:584.129518px;}
.y38{bottom:592.004878px;}
.y12{bottom:594.000010px;}
.y69{bottom:600.749993px;}
.y11{bottom:616.500010px;}
.y87{bottom:631.380229px;}
.y10{bottom:639.000011px;}
.ycc{bottom:640.379527px;}
.y36{bottom:648.254879px;}
.yf{bottom:661.500011px;}
.y114{bottom:676.125028px;}
.ya0{bottom:682.005227px;}
.y85{bottom:687.630227px;}
.yca{bottom:696.629524px;}
.ye{bottom:699.750012px;}
.y34{bottom:704.504877px;}
.yd{bottom:722.250013px;}
.y9f{bottom:738.255225px;}
.y83{bottom:743.880224px;}
.yc{bottom:744.750013px;}
.yc7{bottom:752.879522px;}
.y32{bottom:760.754875px;}
.y5d{bottom:764.129874px;}
.yb{bottom:767.250014px;}
.ya{bottom:789.750014px;}
.y102{bottom:790.875106px;}
.ye7{bottom:790.875181px;}
.y9e{bottom:794.505222px;}
.y74{bottom:800.129520px;}
.y81{bottom:800.130222px;}
.y9{bottom:812.250015px;}
.y5b{bottom:814.754872px;}
.y101{bottom:815.625106px;}
.ye6{bottom:815.625182px;}
.y30{bottom:817.004872px;}
.yc3{bottom:820.379519px;}
.y110{bottom:831.629519px;}
.yb6{bottom:831.630221px;}
.y8{bottom:834.750015px;}
.y9d{bottom:850.755220px;}
.y72{bottom:856.379518px;}
.y7f{bottom:856.380220px;}
.y7{bottom:857.250016px;}
.y25{bottom:869.625030px;}
.y59{bottom:871.004870px;}
.y2e{bottom:873.254870px;}
.y6{bottom:879.750016px;}
.ya4{bottom:880.875050px;}
.y10e{bottom:887.879516px;}
.yb4{bottom:887.880218px;}
.y5{bottom:902.250017px;}
.ya3{bottom:905.625051px;}
.yc0{bottom:910.379515px;}
.y70{bottom:912.629515px;}
.y7d{bottom:912.630217px;}
.y57{bottom:927.254868px;}
.y2c{bottom:929.504867px;}
.ya2{bottom:930.375052px;}
.y10c{bottom:944.129514px;}
.yb2{bottom:944.130216px;}
.ya1{bottom:955.125052px;}
.y6e{bottom:968.879513px;}
.y7b{bottom:968.880215px;}
.ybd{bottom:977.879513px;}
.y55{bottom:983.504865px;}
.y2a{bottom:985.754865px;}
.y10a{bottom:1000.379512px;}
.yb0{bottom:1000.380214px;}
.y3{bottom:1017.254950px;}
.y6c{bottom:1025.129511px;}
.y21{bottom:1025.129950px;}
.y79{bottom:1025.130213px;}
.y100{bottom:1037.250111px;}
.ye5{bottom:1037.250187px;}
.y53{bottom:1039.754863px;}
.y28{bottom:1042.004863px;}
.yba{bottom:1045.379510px;}
.y108{bottom:1056.629509px;}
.yae{bottom:1056.630211px;}
.yff{bottom:1062.000112px;}
.ye4{bottom:1062.000187px;}
.y99{bottom:1065.630211px;}
.y6a{bottom:1081.379508px;}
.y1f{bottom:1081.379948px;}
.y77{bottom:1081.380210px;}
.yb9{bottom:1086.749980px;}
.y113{bottom:1086.750037px;}
.yfe{bottom:1086.750112px;}
.ye3{bottom:1086.750188px;}
.ye0{bottom:1086.750228px;}
.y51{bottom:1096.004861px;}
.y26{bottom:1098.254860px;}
.y76{bottom:1111.499929px;}
.yb8{bottom:1111.499980px;}
.y24{bottom:1111.500035px;}
.y112{bottom:1111.500037px;}
.yfd{bottom:1111.500113px;}
.y98{bottom:1111.500131px;}
.ye2{bottom:1111.500188px;}
.y90{bottom:1111.500207px;}
.ydf{bottom:1111.500229px;}
.y4e{bottom:1128.375080px;}
.y4f{bottom:1152.254858px;}
.hc{height:21.374999px;}
.h6{height:31.499999px;}
.ha{height:32.624999px;}
.h8{height:44.999998px;}
.h3{height:47.680665px;}
.h4{height:54.000020px;}
.hf{height:56.249998px;}
.h9{height:57.897951px;}
.h7{height:71.520998px;}
.h10{height:78.749997px;}
.he{height:94.499996px;}
.h5{height:122.607425px;}
.h11{height:1178.999591px;}
.hd{height:1178.999699px;}
.hb{height:1178.999951px;}
.h2{height:1179.000023px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w7{width:166.500015px;}
.w6{width:587.249976px;}
.w4{width:593.999975px;}
.w5{width:629.999974px;}
.w3{width:649.124973px;}
.w2{width:808.500026px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:40.500001px;}
.x1{left:42.000000px;}
.xb{left:68.607423px;}
.x2{left:78.750002px;}
.x4{left:79.875002px;}
.x9{left:100.125002px;}
.x5{left:108.650393px;}
.x3{left:121.875003px;}
.x6{left:124.875003px;}
.x7{left:142.125002px;}
.xa{left:183.750001px;}
.xc{left:311.625007px;}
.xd{left:364.763686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023437pt;}
.ls1{letter-spacing:1.119995pt;}
.ws1{word-spacing:-15.339844pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-2143.494191pt;}
._a{margin-left:-1860.761761pt;}
._6{margin-left:-1672.574257pt;}
._3{margin-left:-1406.218784pt;}
._9{margin-left:-1295.187530pt;}
._5{margin-left:-1149.160183pt;}
._8{margin-left:-1052.107445pt;}
._4{margin-left:-883.302756pt;}
._0{margin-left:-4.921875pt;}
._2{margin-left:-3.828125pt;}
._1{margin-left:-1.503909pt;}
.fs0{font-size:56.000001pt;}
.fs3{font-size:68.000002pt;}
.fs2{font-size:84.000002pt;}
.fs1{font-size:144.000003pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:4.000023pt;}
.y8e{bottom:4.000195pt;}
.yfa{bottom:4.000480pt;}
.yde{bottom:4.000550pt;}
.y1e{bottom:5.000049pt;}
.y9c{bottom:5.000101pt;}
.y4c{bottom:7.000052pt;}
.y4{bottom:9.000014pt;}
.yf6{bottom:10.000486pt;}
.yf3{bottom:10.000490pt;}
.yf0{bottom:10.000494pt;}
.yed{bottom:10.000498pt;}
.yea{bottom:10.000502pt;}
.yd8{bottom:10.000559pt;}
.yd3{bottom:10.000566pt;}
.yc9{bottom:10.000573pt;}
.yc6{bottom:10.000577pt;}
.yc2{bottom:10.000582pt;}
.ybf{bottom:10.000586pt;}
.ybc{bottom:10.000590pt;}
.y68{bottom:17.999999pt;}
.y22{bottom:18.000002pt;}
.y20{bottom:18.000005pt;}
.y64{bottom:18.000009pt;}
.y62{bottom:18.000012pt;}
.y60{bottom:18.000015pt;}
.yb7{bottom:18.000021pt;}
.yb5{bottom:18.000024pt;}
.y5c{bottom:18.000026pt;}
.yb3{bottom:18.000027pt;}
.y5a{bottom:18.000029pt;}
.yb1{bottom:18.000031pt;}
.y58{bottom:18.000032pt;}
.yaf{bottom:18.000034pt;}
.y56{bottom:18.000035pt;}
.y54{bottom:18.000039pt;}
.y52{bottom:18.000042pt;}
.y50{bottom:18.000045pt;}
.yab{bottom:18.000048pt;}
.ya9{bottom:18.000052pt;}
.y4a{bottom:18.000055pt;}
.y48{bottom:18.000058pt;}
.y46{bottom:18.000061pt;}
.y44{bottom:18.000064pt;}
.y42{bottom:18.000067pt;}
.y40{bottom:18.000071pt;}
.y3e{bottom:18.000074pt;}
.y3c{bottom:18.000077pt;}
.y3a{bottom:18.000080pt;}
.y37{bottom:18.000083pt;}
.y35{bottom:18.000087pt;}
.y33{bottom:18.000090pt;}
.y31{bottom:18.000093pt;}
.y2f{bottom:18.000096pt;}
.y2d{bottom:18.000099pt;}
.y2b{bottom:18.000103pt;}
.y29{bottom:18.000106pt;}
.y27{bottom:18.000109pt;}
.y97{bottom:18.000150pt;}
.y96{bottom:18.000153pt;}
.y95{bottom:18.000157pt;}
.y94{bottom:18.000160pt;}
.y93{bottom:18.000163pt;}
.y92{bottom:18.000166pt;}
.y91{bottom:18.000169pt;}
.y8c{bottom:18.000198pt;}
.y8a{bottom:18.000201pt;}
.y88{bottom:18.000211pt;}
.y86{bottom:18.000214pt;}
.y84{bottom:18.000217pt;}
.y82{bottom:18.000220pt;}
.y80{bottom:18.000224pt;}
.y7e{bottom:18.000227pt;}
.y7c{bottom:18.000230pt;}
.y7a{bottom:18.000233pt;}
.y78{bottom:18.000236pt;}
.y75{bottom:18.000272pt;}
.y73{bottom:18.000275pt;}
.y71{bottom:18.000278pt;}
.y6f{bottom:18.000281pt;}
.y6d{bottom:18.000284pt;}
.y6b{bottom:18.000288pt;}
.y111{bottom:18.000377pt;}
.y10f{bottom:18.000380pt;}
.y10d{bottom:18.000383pt;}
.y10b{bottom:18.000386pt;}
.y109{bottom:18.000390pt;}
.yf8{bottom:18.000483pt;}
.ydc{bottom:18.000553pt;}
.yda{bottom:18.000556pt;}
.yd5{bottom:18.000563pt;}
.ycd{bottom:18.000567pt;}
.ycb{bottom:18.000570pt;}
.ycf{bottom:18.000573pt;}
.yf5{bottom:30.000487pt;}
.yf2{bottom:30.000491pt;}
.yef{bottom:30.000494pt;}
.yec{bottom:30.000498pt;}
.ye9{bottom:30.000502pt;}
.yd7{bottom:30.000560pt;}
.yd2{bottom:30.000567pt;}
.yc8{bottom:30.000574pt;}
.yc5{bottom:30.000578pt;}
.yc1{bottom:30.000583pt;}
.ybe{bottom:30.000587pt;}
.ybb{bottom:30.000590pt;}
.y9b{bottom:33.000102pt;}
.y4b{bottom:37.226579pt;}
.y4d{bottom:37.226581pt;}
.ye1{bottom:37.226588pt;}
.y23{bottom:37.226595pt;}
.y1{bottom:37.226620pt;}
.y8f{bottom:37.226908pt;}
.yc4{bottom:50.000578pt;}
.y9a{bottom:61.000102pt;}
.y49{bottom:76.226577pt;}
.yf9{bottom:112.226255pt;}
.y47{bottom:126.226575pt;}
.ydd{bottom:154.226254pt;}
.yf7{bottom:157.226254pt;}
.y45{bottom:176.226573pt;}
.ydb{bottom:199.226252pt;}
.yf4{bottom:207.226251pt;}
.y1d{bottom:208.226571pt;}
.yaa{bottom:219.226891pt;}
.y43{bottom:226.226571pt;}
.yd9{bottom:249.226250pt;}
.y2{bottom:250.000003pt;}
.y67{bottom:257.226569pt;}
.yf1{bottom:267.226249pt;}
.ya8{bottom:269.226889pt;}
.y41{bottom:276.226569pt;}
.yd6{bottom:299.226248pt;}
.y66{bottom:307.226567pt;}
.ya7{bottom:319.226887pt;}
.y3f{bottom:326.226567pt;}
.yee{bottom:327.226246pt;}
.y1c{bottom:328.000004pt;}
.y107{bottom:337.000019pt;}
.y1b{bottom:348.000005pt;}
.y65{bottom:357.226565pt;}
.yd4{bottom:359.226245pt;}
.y106{bottom:367.000019pt;}
.y1a{bottom:368.000005pt;}
.ya6{bottom:369.226885pt;}
.y3d{bottom:376.226564pt;}
.y105{bottom:387.000020pt;}
.yeb{bottom:387.226244pt;}
.y19{bottom:388.000006pt;}
.y63{bottom:407.226563pt;}
.y18{bottom:408.000006pt;}
.yd1{bottom:409.226243pt;}
.y8d{bottom:416.226883pt;}
.ya5{bottom:419.226883pt;}
.y3b{bottom:426.226562pt;}
.y17{bottom:428.000006pt;}
.yad{bottom:446.000037pt;}
.ye8{bottom:447.226241pt;}
.y16{bottom:448.000007pt;}
.y61{bottom:457.226561pt;}
.y8b{bottom:461.226881pt;}
.y15{bottom:468.000007pt;}
.yac{bottom:468.000038pt;}
.yd0{bottom:469.226241pt;}
.y39{bottom:476.226560pt;}
.y104{bottom:484.000089pt;}
.yfc{bottom:484.000156pt;}
.y14{bottom:488.000008pt;}
.y103{bottom:506.000089pt;}
.yfb{bottom:506.000157pt;}
.y5f{bottom:507.226559pt;}
.y13{bottom:508.000008pt;}
.y89{bottom:511.226879pt;}
.yce{bottom:519.226238pt;}
.y38{bottom:526.226558pt;}
.y12{bottom:528.000009pt;}
.y69{bottom:533.999994pt;}
.y11{bottom:548.000009pt;}
.y87{bottom:561.226870pt;}
.y10{bottom:568.000010pt;}
.ycc{bottom:569.226246pt;}
.y36{bottom:576.226559pt;}
.yf{bottom:588.000010pt;}
.y114{bottom:601.000024pt;}
.ya0{bottom:606.226868pt;}
.y85{bottom:611.226868pt;}
.yca{bottom:619.226244pt;}
.ye{bottom:622.000011pt;}
.y34{bottom:626.226557pt;}
.yd{bottom:642.000011pt;}
.y9f{bottom:656.226866pt;}
.y83{bottom:661.226866pt;}
.yc{bottom:662.000012pt;}
.yc7{bottom:669.226242pt;}
.y32{bottom:676.226555pt;}
.y5d{bottom:679.226555pt;}
.yb{bottom:682.000012pt;}
.ya{bottom:702.000013pt;}
.y102{bottom:703.000094pt;}
.ye7{bottom:703.000161pt;}
.y9e{bottom:706.226864pt;}
.y74{bottom:711.226240pt;}
.y81{bottom:711.226864pt;}
.y9{bottom:722.000013pt;}
.y5b{bottom:724.226553pt;}
.y101{bottom:725.000094pt;}
.ye6{bottom:725.000161pt;}
.y30{bottom:726.226553pt;}
.yc3{bottom:729.226239pt;}
.y110{bottom:739.226239pt;}
.yb6{bottom:739.226863pt;}
.y8{bottom:742.000013pt;}
.y9d{bottom:756.226862pt;}
.y72{bottom:761.226238pt;}
.y7f{bottom:761.226862pt;}
.y7{bottom:762.000014pt;}
.y25{bottom:773.000026pt;}
.y59{bottom:774.226551pt;}
.y2e{bottom:776.226551pt;}
.y6{bottom:782.000014pt;}
.ya4{bottom:783.000045pt;}
.y10e{bottom:789.226237pt;}
.yb4{bottom:789.226861pt;}
.y5{bottom:802.000015pt;}
.ya3{bottom:805.000045pt;}
.yc0{bottom:809.226236pt;}
.y70{bottom:811.226236pt;}
.y7d{bottom:811.226860pt;}
.y57{bottom:824.226549pt;}
.y2c{bottom:826.226549pt;}
.ya2{bottom:827.000046pt;}
.y10c{bottom:839.226235pt;}
.yb2{bottom:839.226859pt;}
.ya1{bottom:849.000046pt;}
.y6e{bottom:861.226234pt;}
.y7b{bottom:861.226858pt;}
.ybd{bottom:869.226233pt;}
.y55{bottom:874.226547pt;}
.y2a{bottom:876.226547pt;}
.y10a{bottom:889.226233pt;}
.yb0{bottom:889.226857pt;}
.y3{bottom:904.226622pt;}
.y6c{bottom:911.226232pt;}
.y21{bottom:911.226622pt;}
.y79{bottom:911.226856pt;}
.y100{bottom:922.000099pt;}
.ye5{bottom:922.000166pt;}
.y53{bottom:924.226545pt;}
.y28{bottom:926.226545pt;}
.yba{bottom:929.226231pt;}
.y108{bottom:939.226231pt;}
.yae{bottom:939.226855pt;}
.yff{bottom:944.000099pt;}
.ye4{bottom:944.000166pt;}
.y99{bottom:947.226854pt;}
.y6a{bottom:961.226230pt;}
.y1f{bottom:961.226620pt;}
.y77{bottom:961.226854pt;}
.yb9{bottom:965.999982pt;}
.y113{bottom:966.000033pt;}
.yfe{bottom:966.000100pt;}
.ye3{bottom:966.000167pt;}
.ye0{bottom:966.000203pt;}
.y51{bottom:974.226543pt;}
.y26{bottom:976.226543pt;}
.y76{bottom:987.999937pt;}
.yb8{bottom:987.999982pt;}
.y24{bottom:988.000031pt;}
.y112{bottom:988.000033pt;}
.yfd{bottom:988.000100pt;}
.y98{bottom:988.000117pt;}
.ye2{bottom:988.000167pt;}
.y90{bottom:988.000184pt;}
.ydf{bottom:988.000203pt;}
.y4e{bottom:1003.000072pt;}
.y4f{bottom:1024.226541pt;}
.hc{height:18.999999pt;}
.h6{height:27.999999pt;}
.ha{height:28.999999pt;}
.h8{height:39.999998pt;}
.h3{height:42.382813pt;}
.h4{height:48.000018pt;}
.hf{height:49.999998pt;}
.h9{height:51.464845pt;}
.h7{height:63.574220pt;}
.h10{height:69.999997pt;}
.he{height:83.999997pt;}
.h5{height:108.984377pt;}
.h11{height:1047.999636pt;}
.hd{height:1047.999732pt;}
.hb{height:1047.999956pt;}
.h2{height:1048.000020pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w7{width:148.000013pt;}
.w6{width:521.999978pt;}
.w4{width:527.999978pt;}
.w5{width:559.999977pt;}
.w3{width:576.999976pt;}
.w2{width:718.666690pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:36.000001pt;}
.x1{left:37.333333pt;}
.xb{left:60.984376pt;}
.x2{left:70.000002pt;}
.x4{left:71.000002pt;}
.x9{left:89.000002pt;}
.x5{left:96.578127pt;}
.x3{left:108.333336pt;}
.x6{left:111.000002pt;}
.x7{left:126.333336pt;}
.xa{left:163.333334pt;}
.xc{left:277.000006pt;}
.xd{left:324.234387pt;}
}




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